home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000206_news@columbia.edu_Sun Nov 20 12:43:40 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA17913
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Mon, 21 Nov 1994 05:49:42 -0500
  3. Received: by apakabar.cc.columbia.edu id AA07654
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Mon, 21 Nov 1994 05:49:40 -0500
  5. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Question about ASK usage in MS-Kermit script
  9. Message-Id: <1994Nov20.184340.33391@cc.usu.edu>
  10. Date: 20 Nov 94 18:43:40 MDT
  11. References: <CzLEG2.3Er@nntpa.cb.att.com>
  12. Organization: Utah State University
  13. Lines: 23
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <CzLEG2.3Er@nntpa.cb.att.com>, mrbaker@hodcs.ho.att.com (-M.BAKER) writes:
  17. > Hello:
  18. > I have a question about ASK.  I am writing an MS-Kermit 
  19. > script which prompts
  20. > the user to enter a filename, so I "ASK" for it.  No problem
  21. > there.  But I would like to be able to detect if the user merely
  22. > hits the ENTER key without typing anything else in first.
  23. > There is probably an obvious answer.  I have looked all over &
  24. > experimented with no success.  I am a new user of Kermit, hence I
  25. > am working from .HLP, .UPD, and .BWR while waiting for my copy
  26. > of "the book" to arrive.
  27. > Can someone please help? (Examples appreciated)
  28. -----------
  29.     ask \%a prompt>
  30.     prompt> <user presses Enter so \%a is empty and therefore undefined>
  31.     if equ "\%a" "" echo The user did not provide text
  32. or    if defined \%a  echo The user did provide text
  33. and so on. Don't use {\%a} {} because they will parse out to empty, leaving
  34.  if equ echo The ... which is not what is wanted.
  35.     Joe D.